home *** CD-ROM | disk | FTP | other *** search
- rem Don't change the lone echo's (three lines down) they are CTRL-X's
- rem I know, I know...Not the best batch programming but hey...IT WORKS!
- if exist 151.wad goto regwad else
- echo
- echo Hey! You don't have the 151.wad in the current directory!
- echo So let's see if you have 15regwad.zip...
- echo
- if exist 15regwad.zip goto unzipit else
- echo
- echo Hey! You don't even have the 15regwad.zip!
- echo
- goto end
- :regwad
- if exist doom.wad goto play else
- echo
- echo You need the REGISTERED wad for this!
- echo
- goto end
- :play
- echo
- echo Whoa! You have everything! COOL!
- echo
- DOOM -FILE 151.WAD -PLAYDEMO SPIDER
- echo There, that wasn't so bad now was it...
- goto end
- :unzipit
- echo **********************************************
- echo ***** Now starting to unzip 15regwad.zip *****
- echo **** Press CTRL-C or CTRL BREAK to cancle ****
- echo **********************************************
- echo NOTE: Must have pkunzip in path or current directory :)
- echo Have a nice day :)
- more
- pkunzip 15regwad.zip
- echo All Done! Now starting DOOM!
- goto play
- :end
-
-